home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19941221-19950208 / 000023_news@columbia.edu_Sun Dec 25 04:03:21 1994.msg < prev    next >
Internet Message Format  |  2020-01-01  |  4KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23956
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 25 Dec 1994 05:40:28 -0500
  3. Received: by apakabar.cc.columbia.edu id AA19926
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 25 Dec 1994 05:40:26 -0500
  5. Newsgroups: comp.protocols.kermit.misc
  6. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!agate!darkstar.UCSC.EDU!news.hal.COM!decwrl!netcomsv!netcomsv!lafn.org!lafn.org!ac388
  7. From: ac388@lafn.org (Charles Lease)
  8. Subject: Re: Help adding zmodem to MSKermit.
  9. Message-Id: <1994Dec25.040321.22507@lafn.org>
  10. Sender: news@lafn.org
  11. Nntp-Posting-Host: lafn.org
  12. Reply-To: ac388@lafn.org (Charles Lease)
  13. Organization: The Los Angeles Free-Net
  14. References: <3d455r$1fd8@heart.cas.und.nodak.edu>  
  15. Date: Sun, 25 Dec 1994 04:03:21 GMT
  16. Lines: 71
  17. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  18.  
  19.  
  20. In a previous article, degregor@aero.und.nodak.edu (Brian Degregorio) says:
  21.  
  22. >I'm trying to add gsz to kermit running on a direct connection (null modem), 
  23. >but when I try to recieve something gsz doesn't accept the null modem signal.
  24. >Any help would be greatly appreciated. 
  25. >
  26. >                    Thanks in advance,
  27. >                    Brian Degregorio
  28. >                    
  29. >
  30. >*****************************************************************************
  31. >**                 Brian Degregorio                         **
  32. >**                 3504 11th ave N apt #16               **
  33. >**                 Grand Forks, ND  58203                   **
  34. >**        Email:  degregor@aero.cas.und.nodak.edu               **
  35. >**              Phone:  701-772-7856 or if busy 701-795-8620               **
  36. >Captain Penny's Law:
  37. >    You can fool all of the people some of the time, and some of
  38. >    the people all of the time, but you Can't Fool Mom. 
  39. >*****************************************************************************
  40. >
  41. I use DSZ, but GSZ should work the same way. Just make the appropriate
  42. name change to the following macros.
  43.  
  44. I've forgotten which one of the DOCUMENTATION files I found this in, but
  45. by adding the following macros to my MSCUSTOM.INI file I can call DSZ
  46. as an external protocol from MSKermit.
  47.  
  48.  > ; Macros for transferring files via DSZ (Zmodem) ...
  49.  > ;
  50.  > define rz run dsz est 0 9600 F ha on port 1 G rz -r
  51.  > define sz run dsz est 0 9600 F ha on port 1 G sz \%1 \%2 \%3 \%4 \%5
  52.  > define t run dsz est 0 9600 F ha on port 1 G t -r
  53.  
  54. DSZ is installed in a directory in my path. I use Kermit's terminal emulation
  55. for everything up to the point where I issue the:
  56.  
  57.    sz [filespec]
  58.  
  59. command on the remote system command line. I then use [Alt + X] to return to
  60. the local Kermit command line, where I use:
  61.  
  62.    do rz
  63.  
  64. to initiate the Kermit "rz" macro defined above. This starts DSZ in the 
  65. receive mode, which initiates the file transfer via Zmodem. When the transfer
  66. is complete, DSZ exits and returns to the Kermit command line. I can then
  67. "connect" again to get back to the remote command line. The:
  68.  
  69.    est 0 9600
  70.  
  71. passed to DSZ is supposed to cause the estimated transfer time to reflect
  72. the correct 9600 baud rate of my V.32 modem, even though I use a DCE/DTE
  73. rate of 19,200. This doesn't seem to work right, but I haven't yet tried to
  74. determine why not. Also the "G" is supposed to be necessary to enable the
  75. serial port, since when you run an external command, kermit is supposed to
  76. shut off the serial port. It seems to work, so I haven't investigated if it
  77. is really needed. Using "rz" on the remote system and "do sz" from the local
  78. kermit command line initiates Zmodem "up-loads" in place of downloads. The
  79. "t" macro is a special version of the download protocol, which I haven't
  80. used yet. It is supposed to allow more automatic downloads to be performed.
  81.  
  82. I'm sure more automation could be included in the macros, but these work
  83. quite well manually. Maybe someone else had improved on these macro's. With
  84. MSKermit as the main comm. program and DSZ as an external protocol, I have
  85. two of the most popular and reliable protocols available in an inexpensive
  86. package.
  87.  
  88. -- 
  89. cdl [ac388@lafn.org] ...